home *** CD-ROM | disk | FTP | other *** search
/ C/C++ Users Group Library 1996 July / C-C++ Users Group Library July 1996.iso / vol_200 / 222_01 / stdio.h < prev    next >
Text File  |  1980-01-01  |  768b  |  43 lines

  1. /*
  2. ** STDIO.H -- Standard Small-C Defs
  3. **
  4. ** 3/24/86 -- F. A. Scacchitti
  5. */
  6.  
  7. /*
  8. ** I/O paths
  9. */
  10. #define stdin    0
  11. #define stdout   1
  12. #define stderr   2
  13.  
  14. /*
  15. ** special codes
  16. */
  17. #define ERR   (-2)
  18. #define EOF   (-1)
  19.  
  20. /*
  21. ** logical states
  22. */
  23. #define YES      1
  24. #define NO       0
  25. #define TRUE     1
  26. #define FALSE    0
  27.  
  28. /*
  29. ** ascii characters
  30. */
  31. #define NULL     0
  32. #define CR      13
  33. #define LF      10
  34. #define BELL     7
  35. #define SPACE  ' '
  36. #define NEWLINE CR
  37.  
  38. /*
  39. ** special types
  40. */
  41. #define FILE int
  42.  
  43.